home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-05-09 | 1.7 KB | 43 lines | [TEXT/ttxt] |
- Service C++ functions and classes
-
- Makefile Makefile for making the library
- README What is this all about and how to use it
-
- myenv.h My customary standard environment
- myenv.cc and supporting programs
- vmyenv.cc and its validation code
-
- endian_io.h Read/Write ints of various sizes taking the byte
- endian_io.cc order into account + bit-stream IO
- vendian_io.cc Verification program
-
- Vocabulary Database Manager
- voc.h Definition of Vocabulary items, vocabulary
- voc.cc Implementation of certain functions
- voc_io.cc Dictionary I/O operations
- vvoc.cc Verification of voc operations
-
- Histogram of an integer-valued distribution
- histogram.h Declaration of the class Histogram
- histogram.cc Compouting the histogram and related operations
- vhistogram.cc Verification of histogram operations
-
- Arithmetic Coding of the sequence of integers
- arithm.h Declaration of the class ArithmCoding
- arithm_coding.cc Encoding/Decoding the input character
- Providing the codec with the probability of the
- current symbol to code
- arithm_model.cc Basics of the symbol source model
- arithm_modadapt.h Adaptive model, uses some apriori initial prob distr
- arithm_modadapt.cc and adjusts it as symbols are processed
- arithm_modhist.h Non-adaptive model, computes the histogram first
- arithm_modhist.cc and then uses it to supply the codec with probabilities
- arithm_modadh.h Adaptive model, uses the histogram to guess the initial
- arithm_modadh.cc prob distr and tailors it as symbols are processed
-
- varithm.cc Verify the arithmetic coding
-
- Portability extensions (for non-gcc compilers)
- std.h Declaration of "standard" functions
- builtin.h Declaration of built-ins like abs() and sqr()
-